home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mspws_dotdotdot.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  72 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10142);
  10.  script_version ("$Revision: 1.15 $");
  11.  script_cve_id("CVE-1999-0386");
  12.  name["english"] = "MS Personal WebServer ...";
  13.  name["francais"] = "MS Personal WebServer ...";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "It is possible to read
  17. any file on the remote system by prepending
  18. several dots before the file name.
  19.  
  20. Example :
  21.  
  22.     GET ........../config.sys
  23.  
  24. Solution : Disable this service and install
  25. a real Web Server.
  26.  
  27. Risk factor : High";    
  28.  
  29.  desc["francais"] = "Il est possible de lire
  30. n'importe quel fichier sur la machine distante
  31. en ajoutant des points devant leur noms.
  32. Nous avons essayΘ de faire :
  33.  
  34.     GET ......./config.sys
  35.     
  36. Solution : dΘsactivez ce service et installez
  37. un vrai serveur web.
  38.  
  39. Facteur de risque : ElevΘ";
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "......../file.txt";
  44.  summary["francais"] = "......./file.txt";
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  52.  family["english"] = "CGI abuses";
  53.  family["francais"] = "Abus de CGI";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  script_dependencie("find_service.nes", "no404.nasl");
  56.  script_require_ports("Services/www", 80);
  57.  exit(0);
  58. }
  59.  
  60. #
  61. # The script code starts here
  62. #
  63.  
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66. port = get_http_port(default:80);
  67. cgi = "/................../config.sys";
  68. res = is_cgi_installed_ka(item:cgi, port:port);
  69. if(res)security_hole(port);
  70.  
  71.  
  72.